-- NOTES -- This video introduces the Vector3 data type and how it is used to change a part's -- position and size. -- URL to Roblox datatype documentation: https://create.roblox.com/docs/reference/engine/datatypes ---------- MoveIt script -- Get a variable to store the part local part = script.Parent -- Pause the script 6 seconds to give you time to enter the game wait(6) -- Assign a new Vector3 object to the parts location instantly moving it part.Position = Vector3.new(40, 10.5, 50) wait(1) part.Position = Vector3.new(30, 10.5, 50) wait(1) part.Position = Vector3.new(20, 10.5, 50) wait(1) part.Position = Vector3.new(20, 10.5, 10) wait(1) -- increase height of the part by 2 studs part.Position = Vector3.new(20, 12.5, 10) wait(1) -- Change the size of the part to X=4, Y=4, Z=4 part.Size = Vector3.new(4, 4, 4)